home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 December
/
2004-12 CHIP.iso
/
Dom i biuro
/
Crimson Editor 3.70
/
cedt370r.exe
/
template
/
hello world program.for
< prev
next >
Wrap
Text File
|
2002-07-17
|
174b
|
8 lines
C Basic template file for FORTRAN
PROGRAM MAIN
CHARACTER*11 STR
STR = 'hello world'
PRINT 10, STR
10 FORMAT( 1X, A11 )
END